home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / os2 / cenv2_19.arj / HELLO.CMM < prev    next >
Text File  |  1994-03-04  |  351b  |  10 lines

  1. //****************************************
  2. //*** Hello.cmm - My first Cmm program ***
  3. //*** ver.1                            ***
  4. //****************************************
  5.  
  6. Count = 1;  /* Count is how many Cmm programs I've written */
  7. printf("Hello world. This is my %dst Cmm program.\n",Count);
  8. printf("Press any key to quit...");
  9. getch();
  10.